home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (3rd Edition)
/
The Business Master (3rd Edition).iso
/
files
/
wordmisc
/
qkforms
/
q-form22.exe
/
PRINT.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1992-05-03
|
392 b
|
24 lines
@ECHO OFF
ECHO.
IF NOT %1.==. GOTO good1
ECHO You did not specify a filename
ECHO Type PRINT (filename) For example:
ECHO.
ECHO PRINT MANUAL.DOC or PRINT README.DOC
ECHO.
GOTO end
:good1
IF EXIST %1 GOTO good2
ECHO %1 was not found
GOTO end
:good2
ECHO .... Printing %1 ....
COPY %1 LPT1 > nul
ECHO.
ECHO Printing Finished
:end
ECHO.